/* Home Page Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #2a2f36;
    color: #00e5ff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 155vh;
    transition: background 0.5s ease, color 0.5s ease;
}
.image1 {
    width: 50px;
    height: 50px;
}

.image2 {
    width: 400px;
    height: 200px;
}
/* Center the navigation bar content */
nav {
    background-color: #121518;
    padding: 10px 0;  /* Remove extra left/right padding */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Center content horizontally */
}

/* Ensure nav-container is centered and flexbox is used properly */
.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;  /* Add some side padding to the container */
}

/* Style for the navigation list */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the list items */
    align-items: center;
}

/* Flexbox to ensure equal space between list items */
.nav-list li {
    margin: 0 15px;  /* Adjust the spacing between menu items */
    text-align: center;
}

/* Ensure links are properly styled */
.nav-list a {
    text-decoration: none;
    color: #00e5ff;
    font-size: 18px;
    padding: 10px;
    display: block;
}

/* Style for hover and active states */
.nav-list a:hover, .nav-list a.active {
    color: #ffffff;
    background-color: #2a2f36;
    border-radius: 5px;
}

/* Hamburger styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #00e5ff;
}

/* Mobile responsive styles */
@media only screen and (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        text-align: left;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .nav-list.active {
        display: flex;
    }
}


/* Footer Styles */
footer {
    background-color: #121518;
    color: #00e5ff;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 97.4%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 80px; /* Make the footer logo larger if needed */
    height: 80px;
}

.instagram-button {
        border: none;
        background: none;
        padding: 0;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .instagram-button img {
        width: 50px; /* Adjust based on your image size */
        height: 50px; /* Adjust based on your image size */
        display: block;
    }

    .instagram-button:hover {
        opacity: 0.8;
    }

.footer-text {
    max-width: 800px;
    text-align: left;
}

.footer-text h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #ffffff;
}

.footer-text h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #00e5ff;
}

.footer-text p {
    margin: 0 0 10px;
    font-size: 16px;
    color: #d1d1d1;
}

.footer-text a {
    color: #00e5ff;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.content {
    text-align: center;
    max-width: 800px;
    margin: 100px auto;
    position: relative;
    z-index: 1;
}

.image, .title, .subtitle {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.text-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

body.scrolled .image,
body.scrolled .title,
body.scrolled .subtitle {
    opacity: 0;
    transform: translateY(-1000px);
}

body.scrolled .text-content {
    opacity: 1;
    transform: translateY(0);
}

body.scrolled {
    background: #ffffff;
    color: #000000;
}

body.scrolled nav {
    background-color: #121518;
}

body.scrolled .nav-list a {
    color: #00e5ff;
}

body.scrolled .nav-list a:hover {
    color: #444444;
}

.content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.content h1 {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 38px;
    margin: 0;
}

.content h2 {
    font-size: 24px;
    margin-top: 10px;
}

.content p {
    font-size: 18px;
    margin-top: 10px;
}

.contact-info p + p:empty {
    margin-bottom: 200px; /* Adjust this value as needed for spacing */
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 14px !important;
        padding: 10px !important;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 12px !important;
        padding: 5px !important;
    }
}
